From 7999d904265804ce344cf05a6bdf76429439f9a8 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Wed, 15 Mar 2006 20:22:31 +0100 Subject: [PATCH] Make asm macros use the generally accepted comma-separated arg-passing style. Signed-off-by: Keir Fraser --- xen/arch/x86/hvm/vmx/x86_32/exits.S | 8 ++++---- xen/arch/x86/hvm/vmx/x86_64/exits.S | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/xen/arch/x86/hvm/vmx/x86_32/exits.S b/xen/arch/x86/hvm/vmx/x86_32/exits.S index 43abba29c3..28a10807cb 100644 --- a/xen/arch/x86/hvm/vmx/x86_32/exits.S +++ b/xen/arch/x86/hvm/vmx/x86_32/exits.S @@ -89,7 +89,7 @@ ENTRY(vmx_asm_vmexit_handler) call vmx_vmexit_handler jmp vmx_asm_do_resume -.macro vmx_asm_common launch initialized +.macro vmx_asm_common launch, initialized 1: /* vmx_test_all_events */ .if \initialized @@ -140,10 +140,10 @@ ENTRY(vmx_asm_vmexit_handler) .endm ENTRY(vmx_asm_do_launch) - vmx_asm_common 1 0 + vmx_asm_common 1, 0 ENTRY(vmx_asm_do_resume) - vmx_asm_common 0 1 + vmx_asm_common 0, 1 ENTRY(vmx_asm_do_relaunch) - vmx_asm_common 1 1 + vmx_asm_common 1, 1 diff --git a/xen/arch/x86/hvm/vmx/x86_64/exits.S b/xen/arch/x86/hvm/vmx/x86_64/exits.S index bd411fa527..b965686b2a 100644 --- a/xen/arch/x86/hvm/vmx/x86_64/exits.S +++ b/xen/arch/x86/hvm/vmx/x86_64/exits.S @@ -97,7 +97,7 @@ ENTRY(vmx_asm_vmexit_handler) call vmx_vmexit_handler jmp vmx_asm_do_resume -.macro vmx_asm_common launch initialized +.macro vmx_asm_common launch, initialized 1: .if \initialized /* vmx_test_all_events */ @@ -147,10 +147,10 @@ ENTRY(vmx_asm_vmexit_handler) .endm ENTRY(vmx_asm_do_launch) - vmx_asm_common 1 0 + vmx_asm_common 1, 0 ENTRY(vmx_asm_do_resume) - vmx_asm_common 0 1 + vmx_asm_common 0, 1 ENTRY(vmx_asm_do_relaunch) - vmx_asm_common 1 1 + vmx_asm_common 1, 1 -- 2.30.2